Spread for ASP.NET 7.0 Product Documentation
CopyTo(NamedStyle[],Int32) Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > DefaultStyleCollection Class > CopyTo Method : CopyTo(NamedStyle[],Int32) Method


array
One-dimensional array into which the elements from ICollection are copied; the array indexing must be zero-based.
index
Zero-based index in the array at which to paste the styles

Glossary Item Box

Copies the styles in the collection to a specified array of named styles.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub CopyTo( _
   ByVal array() As NamedStyle, _
   ByVal index As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As DefaultStyleCollection
Dim array() As NamedStyle
Dim index As Integer
 
instance.CopyTo(array, index)
C# 
public void CopyTo( 
   NamedStyle[] array,
   int index
)

Parameters

array
One-dimensional array into which the elements from ICollection are copied; the array indexing must be zero-based.
index
Zero-based index in the array at which to paste the styles

Example

C#Copy Code
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
FarPoint.Web.Spread.NamedStyle[] style = new FarPoint.Web.Spread.NamedStyle[dsc.Count];
dsc.CopyTo((Array)style,0);

Visual BasicCopy Code
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection()
Dim style(dsc.Count()) As FarPoint.Web.Spread.NamedStyle
dsc.CopyTo(CType(style, Array), 0)

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.